home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / e / misc.save / 000034_scottac@nb.sympatico.ca_Tue Dec 19 10:08:51 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: reader2.panix.com!reader1.panix.com!panix!news.maxwell.syr.edu!news.litech.org!News.Dal.Ca!ursa-nb00s0.nbnet.nb.ca!53ab2750!not-for-mail
  2. From: "Scott Caissie" <scottac@nb.sympatico.ca>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Macro: Terminal -> Command -> Terminal -> Command?
  5. Lines: 38
  6. X-Priority: 3
  7. X-MSMail-Priority: Normal
  8. X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
  9. X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
  10. X-RFC2646: Format=Flowed; Original
  11. Message-ID: <xwOhh.34809$cz.516497@ursa-nb00s0.nbnet.nb.ca>
  12. Date: Tue, 19 Dec 2006 09:45:01 GMT
  13. NNTP-Posting-Host: 156.34.45.151
  14. X-Complaints-To: abuse@aliant.net
  15. X-Trace: ursa-nb00s0.nbnet.nb.ca 1166521501 156.34.45.151 (Tue, 19 Dec 2006 05:45:01 AST)
  16. NNTP-Posting-Date: Tue, 19 Dec 2006 05:45:01 AST
  17. Organization: Aliant Internet
  18. Xref: panix comp.protocols.kermit.misc:15604
  19.  
  20. I'm trying to find any possible way to allow a Macro to revert back to the 
  21. COMMAND window "after" CONNECTing.
  22.  
  23. Step #1 Terminal --> Command
  24. Set Key \96 \Ktest
  25. Define test {
  26. ; various commands
  27. CONNECT
  28. }
  29. While in the TERMINAL, the key will bring you to the COMMAND window where 
  30. the macro is processed.
  31.  
  32. Step #2 Command --> Terminal
  33. Define test {
  34. ; various commands
  35. CONNECT
  36. }
  37. One the script is done, the CONNECT command goes to the TERMINAL.
  38.  
  39. Step #3 ?? Terminal --> Command
  40. Now heres my question. Can a macro issue a command through OUTPUT or TRIGGER 
  41. that will cause you to return back to the COMMAND window? I know you can't 
  42. OUTPUT \Kexit.
  43. I'm not sure if TRIGGER is buggy or not but it loses its trigger in a 
  44. certain situations without actually "triggering" you back to the COMMAND 
  45. window. I'm not having much luck in getting OUTPUT and TRIGGER to work 
  46. together.
  47.  
  48. Example:
  49. SET TERMINAL TRIGGER TEST
  50. OUTPUT TEST
  51. CONNECT
  52. * Trigger is used up, but didn't actually trigger anything.
  53.  
  54.  
  55. - Scott 
  56.  
  57.